/* banner swiper */
.banner .banner-video {
    width: 100%;
    height: 810px;
}
.banner .banner-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* hot products */
.home-title-top{
    text-align: center;
    margin-bottom: 60px;
}
.home-title-top h2,.epc h2{
    font-size: 36px;font-weight: 600;
    color: var(--fttcolor);
    text-transform: uppercase;
}
.home-title-top img{
    margin: 0 auto;
}
.home-title-top p{
    font-size: 16px;
    color: var(--ftcolor);
    width: 58%;
    margin: 0 auto;
    line-height: 26px;
}
.home-title-top p.line{
    width: 60px;
    height: 3px;
    background: var(--bgscolor);
    margin: 15px auto 25px;
}
.hot-products .products-navs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 65px;
}
.hot-products .products-navs li{
    margin-right: 20px;
    background: #f6f6f6;
    border: 1px solid #f6f6f6;
    border-radius: 27px;
    transition: all .4s linear;
}
.hot-products .products-navs li:last-child{
    margin-right: 0;
}
.hot-products .products-navs li a{
    display: block;
    padding: 0 30px;
    width: 100%;
    font-size: 18px;
    color: #767676;
    transition: color .4s linear;
    line-height: 52px;
    text-transform: uppercase;
}
.hot-products .products-navs li.proActive{
    border-color: var(--bgscolor);
    background: var(--bgscolor);
    transition: all .3s linear;
}
.hot-products .products-navs li.proActive a{
    color: var(--white);
}

.hot-products .products-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hot-products .products-main li{
    width: calc(25% - 15px);
    margin-top: 30px;
    border: 1px solid rgba(34, 34, 34, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,.1);
}
.hot-products .products-main li:first-child,
.hot-products .products-main li:nth-child(1),
.hot-products .products-main li:nth-child(2){
    margin-top: 40px;
}
.hot-products .products-main li a{
    display: block;
    padding: 18px 18px 30px 18px;
}
.hot-products .products-main li .product-img{
    overflow: hidden;
}
.hot-products .products-main li .product-img img{
    width: 100%;
    transition: all .5s linear;
}
.hot-products .products-main li,
.hot-products .products-main li .product-img,
.hot-products .products-main li .product-img img{
    border-radius: 10px;
}
.hot-products .products-main li h3{
    font-size: 20px;
    color: var(--fttcolor);
    margin-top: 25px;
    text-transform: capitalize;
    font-family: 'Roboto-Bold';
}
.hot-products .products-main li p{
    font-size: 14px;
    line-height: 21px;
    color: var(--ftcolor);
    width: 100%;
    margin: 15px 0 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hot-products .products-main li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 130px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid var(--bgscolor);
    padding: 2px 2px 2px 15px;
    color: var(--bgscolor);
    font-size: 14px;
    background: var(--white);
    transition: all .5s;
}
.hot-products .products-main li span {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--bgscolor);
    border-radius: 50%;
    transition: all .5s;
}
.hot-products .products-main li span i {
    color: var(--white);
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    transition: all .5s;
}
.hot-products .products-cont .products-main{
    display: none;
}
.hot-products .products-cont ul:first-child{
    display: flex;
}

/* solution */
.our-solution{
    width: 100%;
    background: #F6F6F6;
}
.our-solution .solution-content .solution-top{
    display: flex;
    justify-content: space-between;
}
.our-solution .solution-content .solution-item{
    width: 455px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    position: relative;
}
.our-solution .solution-content .solution-item:nth-child(2){
    width: 450px;
    margin: auto 20px;
}
.our-solution .solution-content .solution-li{
    position: relative;
    margin-bottom: 20px;
}
.our-solution .solution-item .solution-li:last-child{
    margin-bottom: 0;
}
.our-solution .solution-item h3{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 56px;
    background: rgba(34, 34, 34, .4);
    text-align: center;
    font-size: 20px;
    line-height: 56px;
    color: var(--white);
    font-weight: normal;
    opacity: 1;
    transition: all .5s linear;
}
.our-solution .solution-item .solution-cover{
    width: 100%;
    height: 100%;
    background: rgba(236, 111, 44, .6);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    transform: scale(0);
    transition: all .5s linear;
}
.our-solution .solution-item .solution-cover .border{
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    margin: 8px;
    border: 1px solid var(--white);
    position: relative;
}
.our-solution .solution-item a img:first-child,
.our-solution .solution-item .solution-cover,
.our-solution .solution-item .solution-cover .border{
    border-radius: 20px;
}
.our-solution .solution-item h3{
    border-radius: 0 0 20px 20px;
}
.our-solution .solution-item .solution-cover .border div{
    height: 80px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}
.our-solution .solution-item .solution-cover p{
    font-size: 24px;
    color: var(--white);
    font-family: 'Roboto-Bold';
    margin-bottom: 17px;
}
.our-solution .solution-item .solution-cover span{
    display: inline-block;
    width: 48%;
    max-width: 142px;
    height: 36px;
    background: var(--white);
    font-size: 16px;
    font-family: 'Roboto-Bold';
    border-radius: 18px;
    color: var(--bgscolor);
    text-align: center;
    line-height: 36px;
}
.our-solution .solution-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
    height: 150px;
    background: var(--bgscolor);
    padding: 23px 65px 23px 28px;
    border-radius: 20px 0 20px 0;
}
.our-solution .solution-bottom p{
    font-size: 18px;
    color: var(--white);
    line-height: 24px;
    font-family: 'Roboto-Bold';
    padding-left: 18px;
    position: relative;
}
.our-solution .solution-bottom p::before{
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 40px;
    background: var(--white);
}
.our-solution .solution-bottom ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0 60px 0 30px;
}
.our-solution .solution-bottom ul li{
    width: 25%;
    border-radius: 10px;
    margin-right: 16px;
    overflow: hidden;
}
.our-solution .solution-bottom ul li:last-child{
    margin-right: 0;
}
.our-solution .solution-bottom ul li a{
    position: relative;
}
.our-solution .solution-bottom ul li img{
    max-width: unset;
    border: 1px dashed #fff;
    border-radius: 10px;
    transition: all linear 0.4s;
}
.our-solution .solution-bottom ul h4{
    height: 28px;
    line-height: 28px;
    background: rgba(34, 34, 34, .5);
    font-size: 16px;
    color: var(--white);
    
    position: absolute;
    margin: auto;
    position: absolute;
    top: 0;
    left: 1px;
    right: 1px;
    bottom: 0;
    text-align: center;
}
.our-solution .solution-bottom>a{
    width: 15%;
    max-width: 182px;
    height: 54px;
    background: var(--white);
    box-shadow: 0px 5px 3px 0px rgba(144,68,28,0.3);
    border-radius: 27px;
    font-size: 16px;
    color: var(--bgscolor);
    line-height: 54px;
    text-align: center;
}
/* epc */
.epc{
    width: 100%;
    height: 390px;
    background: url('/static/images/epc-bg.jpg') no-repeat;
    background-size: 100% 100%;
}
.epc h2{
    color: var(--bgscolor);
    padding-top: 100px;
}
.epc p{
    font-size: 20px;
    color: var(--white);
    line-height: 32px;
    margin: 20px 0 35px;
}
.epc a{
    width: 20%;
    max-width: 210px;
    height: 40px;
    background: var(--bgscolor);
    border-radius: 20px;
    font-size: 16px;
    color: var(--white);
    line-height: 40px;
    text-align: center;
    font-family: 'Roboto-Bold';
}

/* project */
.recent-project .project-swiper .swiper{
    width: 100%;
    height: 100%;
}

.recent-project .project-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.recent-project .project-swiper .swiper-slide::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .5);
}
.recent-project .project-swiper .swiper-slide-prev::after,
.recent-project .project-swiper .swiper-slide-active::after,
.recent-project .project-swiper .swiper-slide-next::after{
    display: none;
}
.recent-project .project-swiper .swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.recent-project .project-swiper .swiper-slide img,
.recent-project .swiper-slide .project-item,
.recent-project .swiper-slide .project-item .project-hide{
    border-radius: 20px;
}

.recent-project .project-swiper .swiper-slide a{
    position: relative;
    display: block;
    width: 100%;
}
.recent-project .swiper-slide .project-item{
    opacity: 0;
    width: 100%;
    height: 56px;
    background: rgba(236, 111, 44, .8);
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 12px;
    transition: all .5s linear;
}
.recent-project .swiper-slide .project-item .project-hide{
    width: 100%;
    height: 100%;
    padding: 50px 30px;
    border: 1px solid var(--white);
}
.recent-project .swiper-slide h3{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 56px;
    padding: 0 30px;
    background: rgba(34, 34, 34, .3);
    font-size: 24px;
    color: var(--white);
    line-height: 56px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
    transition: .5s;
}
.recent-project .swiper-slide .project-item span.title{
    display: inline-block;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 28px;
    font-family: 'Roboto-Bold';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.recent-project .swiper-slide .project-item span.line{
    display: inline-block;
    width: 50px;
    height: 4px;
    background: var(--white);
    margin: 20px 0 25px;
}
.recent-project .swiper-slide .project-item p{
    font-size: 18px;
    color: var(--white);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 40px;
}
.recent-project .swiper-slide .project-item span.project-more{
    display: inline-block;
    width: 146px;
    height: 36px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--white);
    color: var(--bgscolor);
    font-size: 16px;
    color: var(--bgscolor);
    line-height: 36px;
    font-family: 'Roboto-Bold';
}

.recent-project .project-swiper .swiper-button-next,
.recent-project .project-swiper .swiper-button-prev{
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,.1);
    z-index: 9999!important;
    top: 50%!important;
    margin-top: -25px;
    transition: all .5s ease;
}
.recent-project .project-swiper .swiper-button-next:after,
.recent-project .project-swiper .swiper-button-prev:after{
    font-size: 20px!important;
    color: var(--bgscolor)!important;
    font-weight: 600;
    transition: all .5s ease;
}
.recent-project .project-swiper .swiper-button-next{
    right: 10%!important;
}
.recent-project .project-swiper .swiper-button-prev{
    left: 10%!important;
}
/* news */
.news-center{
    width: 100%;
    background: #F6F6F6;
}
.news-center .news-content ul,
.news-center ul>li .news-bottom,
.news-center ul>li .news-bottom p{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-center .news-content ul:first-child{
    margin-bottom: 50px;
}
.news-center .news-content ul>li{
    width: calc(33% - 15px);
    border-radius: 20px;
    transition: all .5s linear;
}
.news-center ul>li .news-img{
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.news-center ul>li .news-img img{
    width: 100%;
    border-radius: 20px 20px 0 0;
    transition: all .5s linear;
}
.news-center ul>li .news-text{
    padding: 35px 30px 40px;
    background: var(--white);
    border-radius: 0 0 20px 20px;
}
.news-center ul>li h3{
    font-size: 20px;
    color: var(--fttcolor);
    line-height: 28px;
    font-family: 'Roboto-Bold';
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-center ul>li .news-text>p{
    font-size: 16px;
    color: var(--ftcolor);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 15px 0 35px;
}
.news-center ul>li .news-time{
    font-size: 16px;
    color: var(--ftcolor);
    line-height: 24px;
}
.news-center ul>li .news-bottom p{
    font-size: 16px;
    color: var(--bgscolor);

}
.news-center ul>li .news-bottom p span{
    display: inline-block;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(236, 111, 44, .2);
    border-radius: 50%;
    text-align: center;
}
.news-center ul>li .news-bottom p i{
    color: var(--bgscolor);
    font-size: 16px;
    line-height: 24px;
}

.news-center ul>li.news-item{
    padding: 55px 40px;
    background: var(--white);
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,.1);
}
.news-center ul>li .news-item-top{
    margin-bottom: 35px;
    display: flex;
    align-items: center;
}
.news-center ul>li .news-item-top p{

    font-size: 28px; font-weight: 600;
    color: var(--fttcolor);
}
.news-center ul>li .news-item-top p span{
    color: var(--bgscolor);
    display: inline-block;
    margin-right: 5px;
}
.news-center ul>li .news-item-top p.line{
    display: inline-block;
    width: 90px;
    height: 1px;
    background: var(--bgscolor);
    margin-left: 14px;
}
.news-center ul>li ol li{
    padding-bottom: 18px;
    border-bottom: 1px solid #E3E3E3;
    margin-bottom: 20px;
    position: relative;
}
.news-center ul>li ol li:last-child{
    margin-bottom: 0;
}
.news-center ul:last-child>li ol li:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.news-center ul>li ol li h3{
    margin-bottom: 12px;
}
.news-center ul>li ol li::after{
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid var(--bgscolor);
    transition: all ease 0.7s;
}
.news-center ul:last-child>li ol li:last-child::after{
    border-bottom: 0;
}

/* service */
.home-service {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.home-service .home_trans {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.home-service .home_trans:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: url('/static/images/cover-bg.png') center center no-repeat;
    background-size: cover;
}
.home-service .home_customer {
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

.home-service .home_customer {
    width: 12800px;
    animation: bg 120s linear infinite;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    background-image: url('/static/images/service-customer.jpg');
    background-position: bottom left;
    background-repeat: repeat-x;
    background-size: auto 100%
}
@keyframes bg {
    0% {
        -moz-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -moz-transform: translate3d(-3200px, 0, 0);
        -webkit-transform: translate3d(-3200px, 0, 0);
        -o-transform: translate3d(-3200px, 0, 0);
        -ms-transform: translate3d(-3200px, 0, 0);
        transform: translate3d(-3200px, 0, 0)
    }
}
.home-service .customer_box {
    width: 50%;
    max-width: 935px;
    height: 380px;
    text-align: center;
    position: absolute;
    left: 50%;
    margin-left: -25%;
    bottom: 0;
    z-index: 3;
    padding: 80px 0 60px;
    background: url("/static/images/service-map.jpg") no-repeat;
    box-shadow: 0px -10px 51px 0px rgba(10,10,10,0.35)
}
.home-service .customer_box h2{
    font-size: 36px;font-weight: 600;
    color: var(--fttcolor);
    line-height: 40px;
    text-transform: uppercase;
}
.home-service .customer_box h2 span{
    color: var(--bgscolor);
}
.home-service .customer_box span.line{
    display: inline-block;
    width: 70px;
    height: 3px;
    background: var(--bgscolor);
    margin: 15px 0 20px;
}
.home-service .customer_box p{
    width: 75%;
    margin: auto;
    font-size: 22px;
    color: var(--fttcolor);
    line-height: 30px;
}
.home-service .customer_box a{
    display: inline-block;
    width: 170px;
    height: 46px;
    background: var(--bgscolor);
    border-radius: 23px;
    font-family: 'Roboto-Bold';
    font-size: 16px;
    color: var(--white);
    line-height: 46px;
    text-transform: uppercase;
    margin-top: 30px;
}

.see-more-sm{
    display: none;
}
@media (any-hover: hover) {
    .hot-products .products-navs li:hover{
        border-color: var(--bgscolor);
        background: var(--bgscolor);
    }
    .hot-products .products-navs li:hover a{
        color: var(--white);
    }
    .hot-products .products-main li:hover h3{
        color: var(--bgscolor);
    }
    .hot-products .products-main li:hover .product-img img{
        transform: scale(1.2);
    }
    .hot-products .products-main li:hover button{
        background: var(--bgscolor);
        color: var(--white);
    }
    .hot-products .products-main li:hover span{
        background: var(--white);
    }
    .hot-products .products-main li:hover span i{
        color: var(--bgscolor);
    }
    .our-solution .solution-left:hover h3,
    .our-solution .solution-item .solution-li:hover h3{
        opacity: 0;
    }
    .our-solution .solution-left:hover .solution-cover,
    .our-solution .solution-item .solution-li:hover .solution-cover{
        transform: scale(1);
    }
    .our-solution .solution-bottom ul li:hover img{
        border: 1px solid var(--bgscolor);
        transform: scale(1.1);
    }
    .recent-project .project-swiper .swiper-slide:hover h3{
        background: transparent;
        opacity: 0;
    }
    .recent-project .project-swiper .swiper-slide:hover .project-item{
        height: 100%;
        opacity: 1;
    }
    .recent-project .project-swiper .swiper-button-next:hover,
    .recent-project .project-swiper .swiper-button-prev:hover{
        background: var(--bgscolor);
    }
    .recent-project .project-swiper .swiper-button-next:hover:after,
    .recent-project .project-swiper .swiper-button-prev:hover:after{
        color: var(--white)!important;
    }
    .news-center ul>li:hover{
        box-shadow: 0px 3px 10px 0px rgba(0,0,0,.1);
    }
    .news-center ul>li:hover .news-img img{
        transform: scale(1.2);
    }
    .news-center ul>li:hover .news-text h3,
    .news-center ul>li ol li:hover h3{
        color: var(--bgscolor);
    }
    .news-center ul>li ol li:hover::after{
        width: 100%;
    } 
}

@media(min-width:768px) and (max-width:1440px){
    .hot-products .products-navs{
        margin: 0 65px;
    }
    .hot-products .products-navs li{
        margin-right: 15px;
    }
    .hot-products .products-navs li a{
        padding: 0 12px;
        line-height: 42px;
    }
    .hot-products .products-main li h3{
        font-size: 20px;
    }
    .hot-products .products-main li p{
        margin: 10px 0 25px;
    }
    .our-solution .solution-bottom ul{
        margin: 0 40px 0 20px;
    }
    .our-solution .solution-bottom>a{
        height: 46px;
        border-radius: 23px;
        font-size: 16px;
        line-height: 46px;
    }
    .recent-project .swiper-slide h3{
        font-size: 20px;
        height: 46px;
        padding: 0 25px;
        line-height: 46px;
    }
    .recent-project .swiper-slide .project-item .project-hide {
        padding: 30px 25px;
    }
    .recent-project .swiper-slide .project-item span.title{
        font-size: 20px;
        line-height: 22px;
    }
    .recent-project .swiper-slide .project-item span.line {
        width: 40px;
        height: 3px;
        margin: 8px 0 10px
    }
    .recent-project .swiper-slide .project-item p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }
    .recent-project .project-swiper .swiper-button-next,
    .recent-project .project-swiper .swiper-button-prev{
        width: 40px !important;
        height: 40px !important;
    }
    .news-center ul>li.news-item{
        padding: 35px 30px;
    }
    .news-center ul>li .news-item-top{
        margin-bottom: 25px;
    }

}

@media(min-width:768px) and (max-width:1260px){
    .home-title-top h2{
        font-size: 36px;
    }
    .home-title-top p.line{
        margin: 12px auto 25px;
    }
    .hot-products .products-navs {
        margin: 0px 40px;
        flex-wrap: wrap;
    }
    .hot-products .products-navs li {
        margin-right: 0;
        width: 30%;
        margin-bottom: 20px;
    }
    .hot-products .products-navs li a{
        line-height: 42px;
        padding: 0 15px;
        text-align: center;
    }
    .hot-products .products-main li h3{
        font-size: 20px;
        margin-top: 20px;
    }
    .hot-products .products-main li p{
        margin: 15px 0 20px;
    }
    .our-solution .solution-bottom{
        padding: 23px 28px 23px 28px;
    }
    .our-solution .solution-item h3{
        height: 42px;
        font-size: 20px;
        line-height: 42px;
    }
    .our-solution .solution-bottom p{
        font-size: 14px;
        line-height: 18px;
        padding-left: 10px;
    }
    .our-solution .solution-bottom ul li{
        margin-right: 10px;
    }
    .our-solution .solution-item .solution-cover p{
        font-size: 22px;
        margin-bottom: 15px;
    }
    .our-solution .solution-bottom>a {
        height: 38px;
        border-radius: 19px;
        font-size: 14px;
        line-height: 38px;
    }
    .recent-project .swiper-slide .project-item .project-hide {
        padding: 30px 25px;
    }
    .recent-project .swiper-slide h3{
        font-size: 18px;
        height: 42px;
        line-height: 42px;
    }
    .recent-project .swiper-slide .project-item span.title {
        font-size: 18px;
        line-height: 20px;
    }
    .recent-project .swiper-slide .project-item p {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    .recent-project .swiper-slide .project-item span.project-more{
        width: 128px;
        height: 32px;
        line-height: 32px;
    }
    .news-center ul>li .news-text{
        padding: 25px 20px 30px;
    }
    .news-center ul>li h3{
        font-size: 18px;
        line-height: 22px;
    }
    .news-center ul>li .news-text>p{
        margin: 10px 0 25px;
        line-height: 21px;
    }
    .news-center ul>li .news-time{
        font-size: 14px;
        line-height: 21px;
    }
    .news-center ul>li p.news-more span{
        font-size: 14px;
    }
    .news-center ul>li p.news-more img{
        width: 15%;
    }
    .news-center ul>li.news-item {
        padding: 25px 20px;
    }
    .news-center ul>li .news-item-top {
        margin-bottom: 20px;
    }
    .news-center ul>li .news-item-top p{
        font-size: 24px;
    }
    .news-center ul>li .news-item-top p.line{
        width: 40px;
    }
    .news-center ul>li ol li h3 {
        margin-bottom: 10px;
    }
    .home-service .customer_box{
        padding: 60px 0 40px;
        height: auto;
    }
    .home-service .customer_box h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .home-service .customer_box span.line {
        width: 60px;
        height: 4px;
        margin: 10px 0 15px;
    }
    .home-service .customer_box p {
        font-size: 18px;
        line-height: 22px;
    }
    .home-service .customer_box a {
        width: 136px;
        height: 40px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 40px;
    }
}

@media(min-width:768px) and (max-width:1024px){
    .home-title-top{
        margin-bottom: 40px;
    }
    .home-title-top h2,.epc h2 {
        font-size: 32px;
    }
    .home-title-top p.line {
        margin: 8px auto 18px;
    }
    .home-title-top p{
        width: 80%;
        line-height: 21px;
        margin: 0 auto;
    }
    .hot-products .products-navs li a{
        line-height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
    .hot-products .products-main li{
        width: calc(33% - 10px);
        margin-top: 26px;
    }
    .our-solution .solution-item h3 {
        height: 36px;
        font-size: 16px;
        line-height: 36px;
    }
    .our-solution .solution-bottom p{
        display: none;
    }
    .our-solution .solution-bottom ul {
        margin: 0 28px 0 0px;
    }
    .epc a{
        font-size: 12px;
    }
    .epc p{
        font-size: 18px;
        line-height: 24px;
    }
    .recent-project .swiper-slide h3 {
        font-size: 14px;
        height: 36px;
        line-height: 36px;
    }
    .news-center ul>li .news-text {
        padding: 20px 15px 25px;
    }
    .news-center ul>li h3 {
        font-size: 16px;
        line-height: 20px;
    }
    .news-center ul>li .news-text>p {
        margin: 6px 0 15px;
        line-height: 18px;
        font-size: 14px;
    }
    .news-center ul>li .news-time {
        font-size: 12px;
        line-height: 18px;
    }
    .news-center ul>li p.news-more span {
        font-size: 12px;
        margin-right: 0;
    }
    .news-center ul>li p.news-more img {
        width: 12%;
    }
    .news-center ul>li.news-item {
        padding: 20px 15px;
    }
    .news-center ul>li .news-item-top p {
        font-size: 20px;
    }
    .news-center ul>li .news-item-top p.line {
        width: 35px;
        margin-left: 8px;
    }
    .news-center ul>li .news-item-top {
        margin-bottom: 15px;
    }
    .news-center ul>li ol li {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .home-service .customer_box {
        padding: 40px 0 20px;
    }
    .home-service .customer_box h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .home-service .customer_box span.line {
        width: 50px;
        height: 3px;
        margin: 6px 0 10px;
    }
    .home-service .customer_box p {
        font-size: 14px;
        line-height: 18px;
    }
    .home-service .customer_box a {
        width: 110px;
        height: 36px;
        border-radius: 18px;
        font-size: 12px;
        line-height: 36px;
        margin-top: 25px;
    }
}

@media screen and (max-width:768px){
    .banner .banner-video{
        height: auto!important;
    }
    .our-solution .solution-content .solution-top,
    .news-center .news-content ul{
        flex-wrap: wrap;
    }
    .hot-products .products-navs,
    .our-solution .solution-bottom{
        display: none;
    }
    .hot-products .products-main li,
    .our-solution .solution-content .solution-item,
    .news-center .news-content ul>li    {
        width: 100%;
    }
    .see-more-sm{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 40%;
        height: 36px;
        background: var(--bgscolor);
        border-radius: 18px;
        padding: 0 2px 0 15px;
        margin: 25px auto 0;
    }
    .see-more-sm span:first-child{
        font-size: 14px;
        color: var(--white);
        font-family: 'Roboto-Bold';
    }
    .see-more-sm span:last-child{
        display: inline-block;
        width: 30px;
        height: 30px;
        background: var(--white);
        border-radius: 50%;
        text-align: center;
    }
    .see-more-sm span:last-child i{
        font-size: 18px;
        color: var(--bgscolor);
        text-align: center;
        line-height: 30px;
    }

    .home-title-top{
        margin-bottom: 30px;
    }
    .home-title-top h2,.epc h2{
        font-size: 24px;
    }
    .home-title-top p{
        display: none;
    }
    .home-title-top p.line {
        display: block;
        width: 40px;
        height: 2px;
        margin-top: 10px;
    }
    .hot-products .products-sm{
        display: flex!important;
    }
    .hot-products .products-main li{
        margin-top: 20px;
        width:calc(50% - 10px);
    }
    .hot-products .products-main li:first-child{
        margin-top: 0;
    }

    /* products sm */
    .hot-products .products-main li,
    .hot-products .products-main li .product-img,
    .hot-products .products-main li .product-img img{
        border-radius: 8px;
    }
    .hot-products .products-main li:nth-child(2){ margin-top:0px;}
    .hot-products .products-main li h3{
        font-size: 18px;
        margin-top: 18px;
    }
    .hot-products .products-main li a{
        padding: 15px 15px 25px 15px;
    }
    .hot-products .products-main li p{
        margin: 10px 0 20px;
        line-height: 20px;
    }
    /* solution sm */
    .our-solution .solution-content .solution-item{
        width: 100%;
        display: block;
    }
    .our-solution .solution-content .solution-item:nth-child(2){
        width: 100%;
        margin: 0;
        display: block;
    }
    .our-solution .solution-item img{
        border-radius: 8px;
        width: 100%;
    }
    .our-solution .solution-item a img:first-child,
    .our-solution .solution-item .solution-cover,
    .our-solution .solution-item .solution-cover .border{
        border-radius: 8px; 
    }
    .our-solution .solution-item h3{
        font-size: 18px;
        height: 36px;
        line-height: 36px;
        border-radius: 0 0 8px 8px;
    }
    .our-solution .solution-item .solution-li:last-child,
    .our-solution .solution-content .solution-left{
        margin-bottom: 20px;
    }
    .our-solution .solution-item:last-child .solution-li:last-child{
        margin-bottom: 0;
    }
    /* epc sm */
    .epc{
        height: auto;
        background: url('/static/images/epc-bg-sm.jpg') no-repeat;
        background-size: 100% 100%;
        padding: 15% 0 12%;
    }
    .epc h2{
        padding-top: 0px;
    }
    .epc p{
        font-size: 18px;
        line-height: 24px;
        margin: 12px 0 25px;
    }
    .epc a{
        width: 50%;
        height: 32px;
        border-radius: 16px;
        font-size: 14px;
        color: var(--white);
        line-height: 32px;
    }
    /* project sm */
    .recent-project .swiper-slide h3{
        height: 38px;
        padding: 0 20px;
        font-size: 18px;
        line-height: 38px;
        border-radius: 0 0 8px 8px;
    }
    .recent-project .project-swiper .swiper-slide img,
    .recent-project .swiper-slide .project-item,
    .recent-project .swiper-slide .project-item .project-hide{
        border-radius: 8px;
    }
    .recent-project .project-swiper .swiper-button-next,
    .recent-project .project-swiper .swiper-button-prev{
        display: none;
    }
    .recent-project .project-swiper .swiper-slide-prev::after,
    .recent-project .project-swiper .swiper-slide-next::after{
        display: block;
    }
    /* news sm */
    .news-center ul>li{
        order: 2;
    }
    .news-center ul>li.news-item{
        order: 1;
    }
    .news-center ul>li{
        margin-top: 20px;
    }
    .news-center ul>li .news-img,.news-center ul>li .news-img img{
        border-radius: 8px 8px 0 0;
    }
    .news-center ul>li .news-text{
        padding: 18px 15px 20px;
        border-radius: 0 0 8px 8px;
    }
    .news-center ul>li h3{
        font-size: 18px;
        line-height: 22px;
    }
    .news-center ul>li .news-text>p{
        font-size: 16px;
        color: var(--ftcolor);
        line-height: 22px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin: 10px 0 20px
    }
    .news-center ul>li .news-time {
        font-size: 14px;
        line-height: 21px;
    }
    .news-center ul>li .news-bottom p{
        font-size: 14px;
        line-height: 21px;
    }
    .news-center ul>li .news-bottom p span {
        width: 20px;
        height: 20px;
        margin-top: -3px;
    }
    .news-center ul>li .news-bottom p i {
        font-size: 14px;
        line-height: 20px;
    }
    .news-center ul>li.news-item{
        padding: 30px 20px;
        border-radius: 8px;
        margin-top: 0;
        height: auto!important;
    }
    .news-center ul>li .news-item-top{
        margin-bottom: 20px;
    }
    .news-center ul>li .news-item-top p{
        font-size: 28px;
    }
    .news-center ul>li .news-item-top p.line {
        width: 60px;
        margin-left: 10px;
    }
    .news-center ul>li ol li {
        padding-bottom: 15px;
        margin-bottom: 18px;
    }
    .news-center ul>li ol li h3 {
        margin-bottom: 8px;
    }
    .news-center .news-content ul:first-child{
        margin-bottom: 30px;
    }
    .home-service .customer_box{
        width: 80%;
        height: auto;
        left: 35%;
        margin-left: -25%;
        padding: 35px 0 25px;
        background: url('/static/images/service-map.jpg') no-repeat;
        background-size: 100% 100%;
        box-shadow: 0px 5px 10px 0px rgba(10,10,10,0.35);
    }
    .home-service .customer_box h2 {
        font-size: 22px;
        line-height: 26px;
    }
    .home-service .customer_box span.line {
        width: 40px;
        height: 3px;
        margin: 6px 0 10px;
    }
    .home-service .customer_box p {
        width: 90%;
        font-size: 14px;
        line-height: 18px;
    }
    .home-service .customer_box a {
        width: 128px;
        height: 36px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 36px;
        margin-top: 15px;
    }
}